home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / email / Parser.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  4KB  |  100 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''A parser of RFC 2822 and MIME email messages.'''
  5. import warnings
  6. from cStringIO import StringIO
  7. from email.FeedParser import FeedParser
  8. from email.Message import Message
  9.  
  10. class Parser:
  11.     
  12.     def __init__(self, *args, **kws):
  13.         """Parser of RFC 2822 and MIME email messages.
  14.  
  15.         Creates an in-memory object tree representing the email message, which
  16.         can then be manipulated and turned over to a Generator to return the
  17.         textual representation of the message.
  18.  
  19.         The string must be formatted as a block of RFC 2822 headers and header
  20.         continuation lines, optionally preceeded by a `Unix-from' header.  The
  21.         header block is terminated either by the end of the string or by a
  22.         blank line.
  23.  
  24.         _class is the class to instantiate for new message objects when they
  25.         must be created.  This class must have a constructor that can take
  26.         zero arguments.  Default is Message.Message.
  27.         """
  28.         if len(args) >= 1:
  29.             if '_class' in kws:
  30.                 raise TypeError("Multiple values for keyword arg '_class'")
  31.             
  32.             kws['_class'] = args[0]
  33.         
  34.         if len(args) == 2:
  35.             if 'strict' in kws:
  36.                 raise TypeError("Multiple values for keyword arg 'strict'")
  37.             
  38.             kws['strict'] = args[1]
  39.         
  40.         if len(args) > 2:
  41.             raise TypeError('Too many arguments')
  42.         
  43.         if '_class' in kws:
  44.             self._class = kws['_class']
  45.             del kws['_class']
  46.         else:
  47.             self._class = Message
  48.         if 'strict' in kws:
  49.             warnings.warn("'strict' argument is deprecated (and ignored)", DeprecationWarning, 2)
  50.             del kws['strict']
  51.         
  52.         if kws:
  53.             raise TypeError('Unexpected keyword arguments')
  54.         
  55.  
  56.     
  57.     def parse(self, fp, headersonly = False):
  58.         '''Create a message structure from the data in a file.
  59.  
  60.         Reads all the data from the file and returns the root of the message
  61.         structure.  Optional headersonly is a flag specifying whether to stop
  62.         parsing after reading the headers or not.  The default is False,
  63.         meaning it parses the entire contents of the file.
  64.         '''
  65.         feedparser = FeedParser(self._class)
  66.         if headersonly:
  67.             feedparser._set_headersonly()
  68.         
  69.         while True:
  70.             data = fp.read(8192)
  71.             if not data:
  72.                 break
  73.             
  74.             feedparser.feed(data)
  75.         return feedparser.close()
  76.  
  77.     
  78.     def parsestr(self, text, headersonly = False):
  79.         '''Create a message structure from a string.
  80.  
  81.         Returns the root of the message structure.  Optional headersonly is a
  82.         flag specifying whether to stop parsing after reading the headers or
  83.         not.  The default is False, meaning it parses the entire contents of
  84.         the file.
  85.         '''
  86.         return self.parse(StringIO(text), headersonly = headersonly)
  87.  
  88.  
  89.  
  90. class HeaderParser(Parser):
  91.     
  92.     def parse(self, fp, headersonly = True):
  93.         return Parser.parse(self, fp, True)
  94.  
  95.     
  96.     def parsestr(self, text, headersonly = True):
  97.         return Parser.parsestr(self, text, True)
  98.  
  99.  
  100.